home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Great Games / 10,000 Great Games.iso / Product / 66 / data1.cab / Source_Files / Src / Spot.cpp < prev    next >
C/C++ Source or Header  |  2000-01-16  |  381b  |  28 lines

  1. #include "stdafx.h"
  2.  
  3. cSpot::cSpot(cSpot **list, cSpot *orig)
  4. {
  5.     add_end((cList **)list);
  6.     
  7.     copy(orig);
  8. }
  9.  
  10. cSpot::cSpot(cSpot **list, int _x, int _y, char *_label)
  11.     add_end((cList **)list);
  12.     
  13.     set_position(_x, _y);
  14.     
  15.     label = _label;
  16. }
  17.  
  18. void cSpot::copy(cSpot *orig)
  19. {
  20.     ASSERT(orig != 0);
  21.     
  22.     set_position(orig->x, orig->y);
  23.     
  24.     label = orig->label;
  25. }
  26.  
  27.